1   package com.iluwatar;
2   
3   public class InvisibilityPotion implements Potion {
4   
5   	@Override
6   	public void drink() {
7   		System.out.println("You become invisible. (Potion="
8   				+ System.identityHashCode(this) + ")");
9   	}
10  
11  }